home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdlib / atol.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  103 b   |  9 lines

  1. #include <stdlib.h>
  2.  
  3. #undef atol
  4.  
  5. long atol(const char *s)
  6. {
  7.     return(strtol(s,(char **)NULL,10));
  8. }
  9.